home *** CD-ROM | disk | FTP | other *** search
/ Columbia Kermit / kermit.zip / newsgroups / misc.20030409-20031118 / 000155_michel.chamberland@jtax.com_Fri Jun 13 09:26:56 EDT 2003.msg < prev    next >
Text File  |  2020-01-01  |  3KB  |  78 lines

  1. Article: 14384 of comp.protocols.kermit.misc
  2. Path: newsmaster.cc.columbia.edu!panix!bloom-beacon.mit.edu!newsfeed.stanford.edu!postnews1.google.com!not-for-mail
  3. From: michel.chamberland@jtax.com (mchamber)
  4. Newsgroups: comp.protocols.kermit.misc
  5. Subject: Re: HTTP Proxy in ckermit
  6. Date: 13 Jun 2003 05:48:41 -0700
  7. Organization: http://groups.google.com/
  8. Lines: 59
  9. Message-ID: <f270e7b1.0306130448.299b24bc@posting.google.com>
  10. References: <f270e7b1.0306121124.4e268ecd@posting.google.com> <bcbt1g$2ph$1@watsol.cc.columbia.edu>
  11. NNTP-Posting-Host: 198.151.35.6
  12. Content-Type: text/plain; charset=ISO-8859-1
  13. Content-Transfer-Encoding: 8bit
  14. X-Trace: posting.google.com 1055508522 9616 127.0.0.1 (13 Jun 2003 12:48:42 GMT)
  15. X-Complaints-To: groups-abuse@google.com
  16. NNTP-Posting-Date: 13 Jun 2003 12:48:42 GMT
  17. Xref: newsmaster.cc.columbia.edu comp.protocols.kermit.misc:14384
  18.  
  19. great! thanks that did it, it is now at least connecting to the proxy,
  20. Now im getting a "403 Tunnel or SSL Forbidden" which ill have to
  21. figure out a away around... Might be because of the user agent... I
  22. dont know.. ill find out
  23.  
  24. Thanks Again!
  25. mchamber
  26.  
  27. jaltman@columbia.edu (Jeffrey Altman) wrote in message news:<bcbt1g$2ph$1@watsol.cc.columbia.edu>...
  28. > This should be fixed in the current release.
  29. > Please upgrade.
  30. > In article <f270e7b1.0306121124.4e268ecd@posting.google.com>,
  31. > mchamber <michel.chamberland@jtax.com> wrote:
  32. > : Hi, I am trying to write a small script to download pages via a proxy
  33. > : using the http protocol. Somehow though it seems that kermit is
  34. > : ignoring the "SET TCP HTTP-PROXY 192.168.40.1:8080" command and tries
  35. > : to connect directly to the host. As you can see from the output below
  36. > : kermit says its trying to connect to the iternet address instead of
  37. > : the 192.168.40.1 proxy. Any pointers would be greatly appreciated.
  38. > : 
  39. > : Sincerely,
  40. > : mchamber
  41. > : 
  42. > : 
  43. > : Here is the relevant part of the script:
  44. > : 
  45. > : <snip>
  46. > : #!/usr/bin/kermit +
  47. > : 
  48. > : SET TCP HTTP-PROXY 192.168.40.1:8080
  49. > : HTTP OPEN www.slashdot.org 80
  50. > : http close
  51. > : quit
  52. > : </snip>
  53. > : 
  54. > : Here is the output of the script:
  55. > : 
  56. > : <snip>
  57. > : C-Kermit 8.0.201, 8 Feb 2002, for Linux
  58. > :  Numeric: 800201
  59. > :  Type COPYRIGHT for copyright information.
  60. > : 
  61. > : SET TCP parameters:
  62. > :  Reverse DNS lookup: off
  63. > :  DNS Service Records lookup: off
  64. > :  Keepalive: on
  65. > :  Linger: off
  66. > :  DontRoute: off
  67. > :  Nodelay: off
  68. > :  Send buffer: (default size)
  69. > :  Receive buffer: (default size)
  70. > :  address: (none)
  71. > :  http-proxy: 192.168.40.1:8080
  72. > : 
  73. > :  DNS Lookup...  Trying 66.35.250.151... Failed: Connection timed out
  74. > : ?HTTP Connection failed.
  75. > : </snip>
  76.